-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v12.14.1 proposal #31069
v12.14.1 proposal #31069
Conversation
PR-URL: #30220 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This is the certdata.txt[0] from NSS 3.47, released on 2019-10-21. This is the version of NSS that will ship in Firefox 71 on 2019-12-10. [0] https://hg.mozilla.org/projects/nss/raw-file/NSS_3_47_RTM/lib/ckfw/builtins/certdata.txt PR-URL: #30195 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Update the list of root certificates in src/node_root_certs.h with tools/mk-ca-bundle.pl. Certificates added: Certificates removed: - Certplus Class 2 Primary CA - Deutsche Telekom Root CA 2 PR-URL: #30195 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
This would otherwise sometimes just print relatively useless information about the value in question, such as `[object Object]`. PR-URL: #30167 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: David Carlier <devnexen@gmail.com>
This function was not actually available during any part of the Node 12 release line because it had been removed earlier (likely accidentally). Refs: #27220 PR-URL: #30098 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
This makes the actual behaviour match the documented (and arguably the correct) behaviour. PR-URL: #30230 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Since this code runs during process and Worker shutdown, it should not call user-provided code and thereby e.g. provide a way to break out of `worker.terminate()`. PR-URL: #30228 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Ben Coe <bencoe@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
`writing-tests.md` states to use arrow functions when appropriate. This updates the examples to do that. Further, this syncs the docs with what's found in [`test/parallel/test-http-agent-null.js`](https://github.com/nodejs/node/blob/master/test/parallel/test-http-agent-null.js) PR-URL: #30126 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
This has been around for a long time, and the underlying V8 API has become stable as well a while ago. PR-URL: #30234 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com>
Allow doctool to fallback to use local files if not building a release build. PR-URL: #30214 Fixes: #29918 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Move a handful of inactive Collaborators to emeriti. PR-URL: #30243 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
If `asyncReset()` is used to specify an alternative resource object to mark a re-used socket in the HTTP Agent implementation, store that object and keep it alive, because domains rely on GC tracking for resource objects to manage their own lifetimes, and previously that resource object might have been garbage-collected too early, leading to crashes. Fixes: #30122 PR-URL: #30196 Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
This makes it possible to tell whether a signal is being tracked in JS. PR-URL: #30229 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com>
Run `EndStartedProfilers` on Environment teardown. This is part of a series of changes to make embedding easier, by requiring fewer internal methods to build a fully functioning Node.js instance. PR-URL: #30229 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com>
Run inspector cleanup code on Environment teardown. This is part of a series of changes to make embedding easier, by requiring fewer internal methods to build a fully functioning Node.js instance. PR-URL: #30229 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com>
This makes more sense than releasing and re-wrapping the raw pointer. PR-URL: #30229 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com>
This is part of a series of changes to make embedding easier, by requiring fewer internal methods to build a fully functioning Node.js instance. This also aligns the worker_threads code with the main thread code. PR-URL: #30229 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com>
This consists of some hopefully-uncontroversial simplifications/clarifications to the text. The one substantial change is to update Node.js Board of Directors to be the OpenJS Board of Directors. PR-URL: #30259 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
This test occasionally fails on macOS with the following error ``` events.js:187 throw er; // Unhandled 'error' event ^ Error: read ECONNRESET at TLSWrap.onStreamRead (internal/stream_base_commons.js:201:27) Emitted 'error' event on TLSSocket instance at: at emitErrorNT (internal/streams/destroy.js:84:8) at processTicksAndRejections (internal/process/task_queues.js:80:21) { errno: -54, code: 'ECONNRESET', syscall: 'read' } ``` Fix it by making the client send the close_notify alert instead of the server. PR-URL: #30202 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Store the result of excetuting the function in variable. Instead of excetuting it for multiple times. PR-URL: #30303 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
PR-URL: #30299 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
PR-URL: #30301 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: #30321 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Changed a variable declaration. PR-URL: #30320 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: #30318 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Refs: nodejs/code-and-learn#97 PR-URL: #30261 Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
db01408
to
9622fed
Compare
v12.x-staging CI: https://ci.nodejs.org/job/node-test-commit/34533/console ✅ |
CITGM: https://ci.nodejs.org/view/Node.js-citgm/job/citgm-smoker/2181/testReport/ |
Did you figure out what was wrong with freebsd or it fixed itself? |
@targos, @gabrielschulhof investigated and found the issue to be 0b0cd8d. I'll update #31125 as we should probably figure out why it is causing a problem just on v12.x. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
2020-01-07, Version 12.14.1 'Erbium' (LTS), @BethGriggs
Notable changes
Commits
ddbe9826d0
] - assert: replace var with let in lib/assert.js (PerfectPan) #3026133e0bd6b7c
] - benchmark: use let instead of var in async_hooks (dnlup) #30470351ee645c8
] - benchmark: use let instead of var in assert (dnlup) #30450da0c6736d0
] - benchmark,doc,lib,test: prepare for padding lint rule (Rich Trott) #30696719e33ff40
] - buffer: fix 6-byte writeUIntBE() range check (Brian White) #3045958fca405c1
] - buffer: change var to let (Vladislav Botvin) #30292cc93a3742b
] - build: store cache on timed out builds on Travis (Richard Lau) #304693b096c2bc4
] - build,win: propagate error codes in vcbuild (João Reis) #30724f9f3ab293f
] - child_process: document kill() return value (cjihrig) #306698d3e023061
] - child_process: replace var with let/const (dnlup) #303896974f26e26
] - child_process: replace var with const/let in internal/child_process.js (Luis Camargo) #30414d70ec60839
] - cluster: replace vars in child.js (EmaSuriano) #3038398321448a6
] - cluster: replace var with let (Herrmann, Rene R. (656)) #30425daa593263d
] - cluster: replace var by let in shared_handle.js (poutch) #304022938fe31ae
] - cluster: destruct primordials in lib/internal/cluster/worker.js (peze) #30246c1cb639e84
] - crypto: remove redundant validateUint32 argument (Tobias Nießen) #30579bb7e78a2a0
] - crypto: fix key requirements in asymmetric cipher (Tobias Nießen) #3024974dd216886
] - crypto: update root certificates (AshCripps) #301957589486584
] - deps: update llhttp to 2.0.1 (Fedor Indutny) #30553d2e32ab6b2
] - deps: update nghttp2 to 1.40.0 (gengjiawen) #304933d39be73d4
] - dgram: remove listeners on bind error (Anna Henningsen) #30210fd5fed1c89
] - dgram: reset bind state before emitting error (Anna Henningsen) #30210ded0748dea
] - dns: use length for building TXT string (Anna Henningsen) #306907cf19ab069
] - dns: switch var to const/let (Dmitriy Kikinskiy) #303026a35c387a1
] - doc: fix typographical error (Rich Trott) #30735043163a602
] - doc: revise REPL uncaught exception text (Rich Trott) #3072950a54ce713
] - doc: update signature algorithm in release doc (Myles Borins) #30673827c53bdbe
] - doc: update README.md to fix active/maint times (Michael Dawson) #307074e93f2333e
] - doc: update socket.bufferSize text (Rich Trott) #307235334f59519
] - doc: note that buf.buffer's contents might differ (AJ Jordan) #296517bc8c85d53
] - doc: clarify IncomingMessage.destroy() description (Sam Foxman) #30255ca960614af
] - doc: fixed a typo in process.md (Harendra Singh) #30277efbe0a28a1
] - doc: documenting a bit more FreeBSD case (David Carlier) #3032542cb92f116
] - doc: add missing 'added' versions to module.builtinModules (Thomas Watson) #30562670e4b5e23
] - doc: address nits for src/README.md (Anna Henningsen) #306936fc562c97c
] - doc: revise socket.connect() note (Rich Trott) #30691bea2069f22
] - doc: remove "this API is unstable" note for v8 serdes API (bruce-one) #306312532bf347d
] - doc: minor updates to releases.md (Beth Griggs) #306368b60065778
] - doc: add 13 and 12 to previous versions (Andrew Hughes) #3059016a8daaae9
] - doc: update AUTHORS list (Gus Caplan) #30672c705a8e816
] - doc: add explanation why keep var with for loop (Lucas Recknagel) #30380a493feb863
] - doc: document "Resume Build" limitation (Richard Lau) #306040d6fbe8b30
] - doc: add note of caution about non-conforming streams (Robert Nagy) #298957ebafda6c3
] - doc: add note about debugging worker_threads (Denys Otrishko) #30594e10f9224ac
] - doc: add mention for using promisify on class methods (Denys Otrishko) #30355768bac5678
] - doc: explain GIT_REMOTE_REF in COLLABORATOR_GUIDE (Denys Otrishko) #30371a836ac10ff
] - doc: fix overriding of prefix option (Luigi Pinca) #30518ec5fe999e8
] - doc: adds NO_COLOR to assert doc page (Shobhit Chittora) #304834b716a6798
] - doc: document timed out Travis CI builds (Richard Lau) #304692e70ad391b
] - doc: replace const / var with let (Duncan Healy) #30446793d360d26
] - doc: update 8.x to 10.x in backporting guide (garygsc) #3048125c8a13fde
] - doc: createRequire can take import.meta.url directly (Geoffrey Booth) #30495d979a9d391
] - doc: add entry to url.parse() changes metadata (Luigi Pinca) #303482e0ef36a19
] - doc: simplify text in pull-requests.md (Rich Trott) #3045811d01700fd
] - doc: remove "multiple variants" from BUILDING.md (Rich Trott) #303660c68515e8c
] - doc: remove "maintenance is supported by" text in BUILDING.md (Rich Trott) #30365d2c85f32c6
] - doc: add lookup to http.request() options (Luigi Pinca) #30353b8b6f258fe
] - doc: fix up N-API doc (Michael Dawson) #302543710068d3e
] - doc: add link to node-code-ide-configs in testing (Kamat, Trivikram) #24012d713e5a9bf
] - doc: update GOVERNANCE.md (Rich Trott) #30259f66f28ea7a
] - doc: move inactive Collaborators to emeriti (Rich Trott) #30243fd16e9f6ff
] - doc: update examples in writing-tests.md (garygsc) #3012617963bbce6
] - doc, console: remove non-existant methods from docs (Simon Schick) #30346fe1296e507
] - doc,meta: allow Travis results for doc/comment changes (Rich Trott) #30330d32cd8595d
] - doc,meta: remove wait period for npm pull requests (Rich Trott) #30329574b0f2104
] - domain: rename var to let and const (Maria Stogova) #30312c80a4d851d
] - encoding: make TextDecoder handle BOM correctly (Anna Henningsen) #30132217cc13f29
] - events: improve performance caused by primordials (guzhizhou) #305771a83c654f9
] - fs: change var to let (Àlvar Pérez) #304077ba8037244
] - fs: cover fs.opendir ERR_INVALID_CALLBACK (Vladislav Botvin) #30307d7c2911f8d
] - fs: change var to let (Nadya) #303186b380cc791
] - http: set socket.server unconditionally (Anna Henningsen) #30571175b8fe5a7
] - http: replace var with let (Guilherme Goncalves) #30421fdfcf68360
] - http: destructure primordials in lib/_http_server.js (Artem Maksimov) #3031571e3c485ad
] - http: revise _http_server.js (telenord) #302795b8c481906
] - http: http_common rename var to let and const (telenord) #302885727bc3880
] - http: http_incoming rename var to let and const (telenord) #30285b0816c2926
] - http: replace vars with lets and consts in lib/_http_agent.js (palmires) #30301652514233f
] - http,async_hooks: keep resource object alive from socket (Anna Henningsen) #301969fd6b5e98b
] - http2: fix session memory accounting after pausing (Michael Lehenbauer) #30684cb3e008c97
] - http2: change var to let compact.js (Maria Emmanouil) #3039268f3dde04b
] - http2: core.js replace var with let (Daniel Schuech) #30403bccef49b5b
] - http2: replace var with let/const (Paolo Ceschi Berrini) #3041713f65d1f16
] - http2: remove duplicated assertIsObject (ZYSzys) #30541eceeed7a11
] - https: change var to let in lib/https.js (galina.prokofeva) #3032055e94cbba1
] - inspector: properly shut down uv_async_t (Anna Henningsen) #30612d138e2db53
] - lib: use let instead of var (Shubham Chaturvedi) #30375d951209458
] - lib: replace var with let/const (jens-cappelle) #30391f963409f77
] - lib: replace var w/ let (Chris Oyler) #30386a6625dd7b6
] - lib: replace var with let/const (Tijl Claessens) #303907d0631aefc
] - lib: adding perf notes js_stream_socket.js (ryan jarvinen) #304151cfaccdc66
] - lib: replace var with let (Dennis Saenger) #30396c4fcd5b4ca
] - lib: main_thread_only change var to let (matijagaspar) #30398dc786c3315
] - lib: change var to let in stream_base_commons (Kyriakos Markakis) #30426e72be52c8e
] - lib: use let instead of var (Semir Ajruli) #3042496c061552d
] - lib: changed var to let (Oliver Belaifa) #3042703e6d0d408
] - lib: replace var with let/const (Dries Stelten) #304097eafe8acdd
] - lib: change var to let (Dimitris Ktistakis) #304080c4bb4a70e
] - lib: replace var with let/const (Tembrechts) #30404ff4f23623c
] - lib: replace var to let in cli_table.js (Jing Lin) #3040080bfc08935
] - lib: replace var with let (David OLIVIER) #30381614949d25d
] - lib: replace var with let and const in readline.js (VinceOPS) #303774834a31880
] - lib: change var to let/const in internal/querystring.js (Artem Maksimov) #30286df2dce08aa
] - lib: change var to let in internal/streams (Kyriakos Markakis) #30430bd853cc709
] - lib: replace var with let/const (Kenza Houmani) #3044045e9c31885
] - lib: change var to let in string_decoder (mkdorff) #303938725a5c935
] - lib: replaced var to let in lib/v8.js (Vadim Gorbachev) #30305bcc00e1e88
] - lib: change var to let in lib/_stream_duplex.js (Ilia Safronov) #30297b1415564ea
] - module: fix for empty object in InternalModuleReadJSON (Guy Bedford) #30256dc9c7709ff
] - n-api: detach external ArrayBuffers on env exit (Anna Henningsen) #305514d396fd874
] - n-api: add missed nullptr check in napi_has_own_property (Denys Otrishko) #3062621be4b1b95
] - net: replaced vars to lets and consts (nathias) #304010ae1d17517
] - net: destructure primordials (Guilherme Goncalves) #304471597626a02
] - net: replaced vars to lets and consts (alexahdp) #30287f874aa1552
] - path: replace var with let in lib/path.js (peze) #30260956207fa8d
] - process: replace var with let/const (Jesper Ek) #30382db029650d9
] - process: replace vars in per_thread.js (EmaSuriano) #3038502f606d528
] - process: add coverage tests for sourceMapFromDataUrl method (Nolik) #3031956b3edcce8
] - process: make source map getter resistant against prototype tampering (Anna Henningsen) #30228cbb2f81bf1
] - querystring: replace var with let/const (Raoul Jaeckel) #30429b21f46d95d
] - readline: change var to let (dnlup) #30435cc84dbfe7b
] - repl: change var to let (Oliver Belaifa) #304284b1f730357
] - src: remove unused variable in node_dir.cc (gengjiawen) #302673bb085dbad
] - src: cleanup unused headers (Alexandre Ferrando) #30328df4dddb0d2
] - src: replaced var with let (Aldo Ambrosioni) #303978af33114e8
] - src: fix signal handler crash on close (Shelley Vohr) #3058212d7d645dd
] - src: add file name to 'Module did not self-register' error (Jeremy Apthorp) #301252f4069a932
] - src: enhance feature accessCHECK
s during bootstrap (Anna Henningsen) #304523d7882e0d1
] - src: lib/internal/timers.js var -> let/const (Nikolay Krashnikov) #30314d8046fc0f8
] - src: persist strings that are used multiple times in the environment (Vadim Gorbachev) #30321e1a12446c5
] - src: run RunBeforeExitCallbacks as part of EmitBeforeExit (Anna Henningsen) #30229da8ceb965d
] - src: use unique_ptr for InitializeInspector() (Anna Henningsen) #30229fc9e7082fd
] - src: make WaitForInspectorDisconnect an exit hook (Anna Henningsen) #30229d14d9e8b1b
] - src: make EndStartedProfilers an exit hook (Anna Henningsen) #30229eb8beb5f5f
] - src: track no of active JS signal handlers (Anna Henningsen) #302292e729f2dc9
] - src: make AtExit() callbacks run in reverse order (Anna Henningsen) #30230569f797917
] - src: remove unimplemented method from node.h (Anna Henningsen) #30098f6360c124c
] - src,doc: fix broken links (cjihrig) #30662a621ab8695
] - src,doc: add C++ internals documentation (Anna Henningsen) #30552ce6a865ab2
] - stream: improve performance for sync write finishes (Anna Henningsen) #307108792147fd2
] - stream: replace var with let (daern91) #3037988adad26f5
] - stream: increase MAX_HWM (Robert Nagy) #29938a83ccf8a6b
] - test: skip test-domain-error-types in debug mode temporariliy (Rich Trott) #30629f3c3b1d328
] - test: add coverage for ERR_TLS_INVALID_PROTOCOL_VERSION (Rich Trott) #30741197b61656d
] - test: add an indicatorisIBMi
(Xu Meng) #307146c6ffdd56c
] - test: use arrow functions in async-hooks tests (garygsc) #301372aa86547ff
] - test: fix test-benchmark-streams (Rich Trott) #307570b0cd8d062
] - test: correct header length subtraction (Rich Trott) #30712b37609d193
] - test: remove unused callback argument (Rich Trott) #307125bb7bf3767
] - test: simplify forEach() usage (Rich Trott) #30712276741ae75
] - test: remove unused callback argument (Rich Trott) #30712e624bb529d
] - test: increase coverage for trace_events.js (Rich Trott) #307059f49b978e4
] - test: refactor createHook test (Jeny) #30568646b81c209
] - test: port worker + buffer test to N-API (Anna Henningsen) #305518554ff2a4c
] - test: move test-https-server-consumed-timeout to parallel (Rich Trott) #30677d3bac601c3
] - test: remove unnecessary common.platformTimeout() call (Rich Trott) #30677564e477b37
] - test: do not skip test-http-server-consumed-timeout (Rich Trott) #30677d3785941a9
] - test: remove unused function argument from http test (Rich Trott) #30677648318dc5c
] - test: add logging in case of infinite loop (Rich Trott) #30649196e08dafc
] - test: remove destructuring from test-inspector-contexts (Rich Trott) #30649ece08a5821
] - test: check for session.post() errors in test-insepctor-context (Rich Trott) #30649c3ad977867
] - test: add mustCall() to test-inspector-contexts (Rich Trott) #30649f5ac4ec49a
] - test: add regression test for signal handler removal in exit (Anna Henningsen) #30589825b3057d1
] - test: move test-worker-prof to sequential (Rich Trott) #3062812ef7d99eb
] - test: dir class initialisation w/o handler (Dmitriy Kikinskiy) #303132f8dcefa6d
] - test: change object assign by spread operator (poutch) #30438e52237d66e
] - test: use useful message argument in test function (Rich Trott) #306181c9ba2cdc3
] - test: test for minimum ICU version consistency (Richard Lau) #306082e37828350
] - test: code&learn var to let update (Nazar Malyy) #3043601da702fec
] - test: change object assign to spread object (poutch) #30422d708887c0b
] - test: use spread instead of Object.assign (dnlup) #3041946f698fed5
] - test: changed var to let in module-errors (Jamar Torres) #3041378c7118ab7
] - test: use spread instead of object.assign (Shubham Chaturvedi) #30412e7f1d57cdf
] - test: replace var with let in pre_execution.js (Vladimir Adamic) #30411d077550c44
] - test: change var to let in test-trace-events (Jon Church) #304067f0e7fd4b2
] - test: dns utils replace var (Osmond van Hemert) #304050a068db450
] - test: test cover cases when trace is empty (telenord) #30311984c40629c
] - test: switch to object spread in common/benchmark.js (palmires) #3030988bca0fcc0
] - test: add common.mustCall() to stream test (Rich Trott) #30561516bdaf54d
] - test: move explanatory comment to expected location in file (Rich Trott) #305618e36901748
] - test: move stream test to parallel (Rich Trott) #305610903f67a87
] - test: remove string literal as message in strictEqual() in stream test (Rich Trott) #3056159c9592679
] - test: use arrow function for callback in stream test (Rich Trott) #305614a5f00c35d
] - test: replace setTimeout with setImmediate in stream test (Rich Trott) #30561cd5076eb62
] - test: refactor test-dgram-multicast-set-interface-lo.js (Taylor Gagne) #305360d26263b7e
] - test: move test not requiring internet from internet to parallel (Rich Trott) #305459869aaaee4
] - test: use reserved .invalid TLD for invalid address in test (Rich Trott) #30545d802393336
] - test: improve assertion message in internet dgram test (Rich Trott) #305456da56e91a3
] - test: add test for options validation of createServer (ZYSzys) #305413fb0f7ebd0
] - test: clean up http-set-trailers (Denys Otrishko) #30522e4a1cffcbc
] - test: handle undefined default_configuration (Shelley Vohr) #30465c0d9a545a3
] - test: Change from var to const (Jure Stepisnik) #3043191c6fe4b61
] - test: changed var to let in test-repl-editor (JL Phillips) #304434dfcc12666
] - test: improve test-fs-open (Artem Maksimov) #30280f0b6a236ac
] - test: change var to let (nathias) #30444df1d73539e
] - test: changed var to const in test (Kerry Mahne) #30434cf9da71e97
] - test: var to const in test-repl-multiline.js (SoulMonk) #30433b49e63d51c
] - test: deflake test-http-dump-req-when-res-ends.js (Luigi Pinca) #303602e6b3be8dd
] - test: change var to const in parallel/test-stream-transform-final* (Kenza Houmani) #30448aaedc06ea4
] - test: replace Object.assign with object spread (Grigoriy Levanov) #30306d1483305ae
] - test: fix Python unittests in ./test and ./tools (cclauss) #303405e2848d44f
] - test: mark test-http-dump-req-when-res-ends as flaky on windows (AshCripps) #303165b428571e2
] - test: fix test-benchmark-cluster (Rich Trott) #30342342031eac0
] - test: deflake test-tls-close-notify.js (Luigi Pinca) #3020243cec65d6f
] - tls: allow empty subject even with altNames defined (Jason Macgowan) #229060f7281a305
] - tls: change loop var to let (Xavier Redondo) #304456fe2c7a106
] - tls: replace var with let (Daniil Pletnev) #30308d59df36f58
] - tls: replace var with let and const (Nolik) #30299634aac5b94
] - tls: refactor tls_wrap.cc (Artem Maksimov) #30303a715c2506b
] - tools: enforce blank line between functions (Rich Trott) #30696da1e5ae1fd
] - tools: add unified plugin changing links for html docs (Marek Łabuz) #29946df91d5fd66
] - tools: enable more eslint rules (cjihrig) #30598bce08806c7
] - tools: update ESLint to 6.7.1 (cjihrig) #305980797cc706a
] - tools: fix build at non-English windows (Rongjian Zhang) #304925e8b2a8190
] - tools: make doctool work if no internet available (Richard Lau) #3021405290fd5ea
] - tools: update certdata.txt (AshCripps) #30195d9e5b72c0b
] - tools: check-imports using utf-8 (cclauss) #302200e68f550e5
] - tty: truecolor check moved before 256 check (Duncan Healy) #30474f2f45297a0
] - url: replace var with let in lib/url.js (xefimx) #30281d96c76507f
] - util: fix inspection of errors with tampered name or stack property (Ruben Bridgewater) #305767421cc8fbd
] - util: use let instead of var for util/inspect.js (Luciano) #30399ec49ea74fe
] - util: replace var with let (Susana Ferreira) #304393f24a87f41
] - v8: mark serdes API as stable (Anna Henningsen) #302342994976ec7
] - v8: inspect unserializable objects (Anna Henningsen) #30167